home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1993 November / JCSM Shareware Collection - 1993-11.iso / cl460 / cfootblj.lzh / SETUP1.BAT < prev    next >
DOS Batch File  |  1992-02-17  |  4KB  |  93 lines

  1.    echo off
  2.    if not "%1"=="" if not "%1"=="?" goto SETUP
  3. :HELP
  4.    echo Command:
  5.    echo SETUP1  {source drive:}  {\root-sub.dir}  {system drive:}  {\root-sub.dir}
  6.    echo Result:
  7.    echo Load files from source drive root sub-directory
  8.    echo              to system drive root sub-directory
  9.    echo Examples:
  10.    echo A:SETUP1  A:  \  C:  \FOOTBALL
  11.    echo C:\DOWNLOAD.DIR\SETUP1  C:  \DOWNLOAD.DIR  C:  \FOOTBALL
  12.    goto END
  13. :SETUP
  14.    if not "%1"=="" if not "%2"=="" if not "%3"=="" if not "%4"=="" goto OK
  15.    echo You must specify 4 SETUP1 parameters.
  16.    goto HELP
  17. :OK
  18.    if "%2"=="\" set d1=\
  19.    if not "%2"=="\" set d1=%2\
  20.    if "%4"=="\" set d2=\
  21.    if not "%4"=="\" set d2=%4\
  22.    if exist %3\config.bak echo ** ERROR ** %3\CONFIG.BAK already exists.  Erase %3\CONFIG.BAK first.
  23.    if exist %3\config.bak goto HELP
  24.    echo Source drive is %1
  25.    echo Source drive sub-directory is %2
  26.    echo System drive is %3
  27.    echo System drive sub-directory is %4
  28.    if not exist %3%4footbal$.exe mkdir %3%4
  29.    dir %3%4
  30.    echo Press CTRL + C to cancel loading files.
  31.    pause
  32.    copy %1%d1%setup1.bat %3%4
  33.    copy %1%d1%setup2.bat %3%4
  34.    copy %1%d1%readme.1st %3%4
  35.    copy %1%d1%footbal$.exe %3%4
  36.    copy %1%d1%football.dat %3%4
  37.    copy %1%d1%footdoc.bat %3%4
  38.    copy %1%d1%FE.bat %3\
  39.    copy %1%d1%football.bat %3\
  40.    copy %1%d1%football.mod %3%4
  41.    copy %1%d1%footcode.bin %3%4
  42.    copy %1%d1%register.frm %3%4
  43.    copy %1%d1%sdn.txt %3%4
  44.    copy %1%d1%cpuload.exe %3%4
  45.    echo Files have been loaded to %3\
  46.    dir %3\FE.bat
  47.    dir %3\football.bat
  48.    pause
  49.    echo Files have been loaded to %3%4
  50.    dir %3%4
  51.    pause
  52.    cls
  53.    echo You can add a RAM drive (optional) to your CONFIG.SYS.
  54.    if not exist %3\dos\vdisk.sys if not exist %3\dos\ramdrive.sys echo RAM disk software missing
  55.    if not exist %3\dos\vdisk.sys if not exist %3\dos\ramdrive.sys goto HELP
  56.    if exist %3\dos\ramdrive.sys echo DEVICE=\DOS\RAMDRIVE.SYS 16 512 16
  57.    if exist %3\dos\vdisk.sys echo DEVICE=\DOS\VDISK.SYS 16 512 16
  58.    echo will be added to CONFIG.SYS with your OK.
  59.    echo Your current CONFIG.SYS is listed below:
  60.    echo ----------------------------------------------------
  61.    type %3\config.sys
  62.    echo ----------------------------------------------------
  63.    echo Press CTRL + C to leave CONFIG.SYS as is and go on  
  64.    echo to Setup2 without adding an optional RAM drive.     
  65.    pause
  66.    if exist config.new erase config.new
  67.    copy %3\config.sys config.new
  68.    if exist %3\dos\ramdrive.sys echo DEVICE=\DOS\RAMDRIVE.SYS 16 512 16 >> config.new
  69.    if exist %3\dos\vdisk.sys echo DEVICE=\DOS\VDISK.SYS 16 512 16 >> config.new
  70.    cls
  71.    echo You can continue to execute to
  72.    echo instantly change the CONFIG.SYS data; or,
  73.    echo you can edit your CONFIG.SYS to include the following code,
  74.    echo displayed from the file CONFIG.NEW
  75.    echo ----------------------------------------------------
  76.    type config.new
  77.    echo ----------------------------------------------------
  78.    echo Press CTRL + C to cancel the update to CONFIG.SYS
  79.    pause
  80.    if exist %3\config.bak echo ** ERROR ** %3\CONFIG.BAK already exists.  Erase %3\CONFIG.BAK first.
  81.    if exist %3\config.bak goto HELP
  82.    rename %3\config.sys %3\config.bak
  83.    echo Renaming the old CONFIG.SYS to CONFIG.BAK ...
  84.    copy config.new %3\config.sys
  85.    erase config.new
  86.    echo ------------------------------------------------
  87.    echo Note your RAM disk designation when warm-started
  88.    echo ------------------------------------------------
  89.    echo Press ALT + CTRL + DEL to reset your machine    
  90.    echo ------------------------------------------------
  91.    echo Setup1 complete ... Now execute Setup2          
  92. :END
  93.